home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / amitcp / protos / netinet / tcp_input_protos.h < prev    next >
Encoding:
Text File  |  1993-04-12  |  617 b   |  25 lines

  1. /* Prototypes for functions defined in
  2. tcp_input.c
  3.  */
  4.  
  5. int tcp_reass(register struct tcpcb * tp,
  6.               register struct tcpiphdr * ti,
  7.               struct mbuf * m);
  8.  
  9. void STKARGFUN tcp_input(register struct mbuf * m,
  10.              int iphlen);
  11.  
  12. void tcp_dooptions(struct tcpcb * tp,
  13.                   struct mbuf * om,
  14.                   struct tcpiphdr * ti);
  15.  
  16. void tcp_pulloutofband(struct socket * so,
  17.                       struct tcpiphdr * ti,
  18.                       register struct mbuf * m);
  19.  
  20. void tcp_xmit_timer(register struct tcpcb * tp);
  21.  
  22. int tcp_mss(register struct tcpcb * tp,
  23.             u_short offer);
  24.  
  25.